mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Using the _get_test and _get_stage methods.
This commit is contained in:
committed by
Michael DeHaan
parent
943829c9b7
commit
cff8cdd428
@@ -291,9 +291,10 @@ class TestRunner(unittest.TestCase):
|
||||
assert result['changed'] == False
|
||||
|
||||
def test_lineinfile(self):
|
||||
samplefn = 'rocannon.txt'
|
||||
sample = os.path.join('test', 'artifact' + samplefn)
|
||||
shutil.copy( os.path.join('test', samplefn), sample)
|
||||
sampleroot = 'rocannon'
|
||||
sample_origin = self._get_test_file(sampleroot + '.txt')
|
||||
sample = self._get_stage_file(sampleroot + '.out' + '.txt')
|
||||
shutil.copy( sample_origin, sample)
|
||||
# The order of the test cases is important
|
||||
|
||||
# defaults to insertafter at the end of the file
|
||||
|
||||
Reference in New Issue
Block a user