~smoser/curtin/trunk.lp1680591

« back to all changes in this revision

Viewing changes to tests/unittests/test_feature.py

  • Committer: Scott Moser
  • Author(s): Andres Rodriguez
  • Date: 2017-03-21 20:29:11 UTC
  • mfrom: (477.1.3 curtin)
  • Revision ID: smoser@ubuntu.com-20170321202911-t0pbv04pfwaw03pp
Add 'STORAGE_CONFIG_V1_DD' to the feature list.

Adds the 'STORAGE_CONFIG_V1_DD' variable to represent that selection of
target disk can be influenced via storage config when installing a dd
image.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    def test_has_storage_v1(self):
8
8
        self.assertIn('STORAGE_CONFIG_V1', curtin.FEATURES)
9
9
 
 
10
    def test_has_storage_v1_dd(self):
 
11
        self.assertIn('STORAGE_CONFIG_V1_DD', curtin.FEATURES)
 
12
 
10
13
    def test_has_network_v1(self):
11
14
        self.assertIn('NETWORK_CONFIG_V1', curtin.FEATURES)
12
15