Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/fedora.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-30 17:53:50 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-30 17:53:50 (GMT)
commitc4162507f92e7c0e315db2f6fcef65d6aefd54cf (patch)
tree494f63643d33ed8cc712e3dfe8cb2828e6aeb5e2 /devbot/plugins/fedora.py
parent3359e001ff406a8fa98233347c3144584096a926 (diff)
Mock and check architecture in the tests
Diffstat (limited to 'devbot/plugins/fedora.py')
-rw-r--r--devbot/plugins/fedora.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/devbot/plugins/fedora.py b/devbot/plugins/fedora.py
index 27f1d17..862ca81 100644
--- a/devbot/plugins/fedora.py
+++ b/devbot/plugins/fedora.py
@@ -85,7 +85,7 @@ class DistroInfo(interfaces.DistroInfo):
_FEDORA_RELEASE_PATH = "/etc/fedora-release"
def __init__(self):
- arch = subprocess.check_output(["uname", "-i"]).strip()
+ arch = self._get_architecture()
self.name = "fedora"
self.version = "unknown"
@@ -110,4 +110,7 @@ class DistroInfo(interfaces.DistroInfo):
else:
self.supported = False
+ def _get_architecture(self):
+ return subprocess.check_output(["uname", "-i"]).strip()
+
distro.register_distro_info(DistroInfo)