~1chb1n/+junk/jenkins-reactive-temp-build

« back to all changes in this revision

Viewing changes to tests/03-slave-trusty

  • Committer: Ryan Beisner
  • Date: 2016-08-27 05:52:07 UTC
  • Revision ID: ryan.beisner@canonical.com-20160827055207-x310qr154yorsr4r
Add temp build of jenkins charm from https://github.com/freeekanayaka/layer-jenkins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
 
 
3
from unittest import TestCase, main
 
4
 
 
5
from slave import (
 
6
    SlaveDeploymentSpec,
 
7
    SlaveDeploymentTest,
 
8
)
 
9
 
 
10
 
 
11
class TrustySlaveDeploymentTest(SlaveDeploymentTest, TestCase):
 
12
 
 
13
    spec = SlaveDeploymentSpec(series="trusty")
 
14
 
 
15
 
 
16
if __name__ == "__main__":
 
17
    main()