summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/dslkeywords/file_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lib/dslkeywords/file_test.rb b/test/lib/dslkeywords/file_test.rb
index e3d76fb..35a0f21 100644
--- a/test/lib/dslkeywords/file_test.rb
+++ b/test/lib/dslkeywords/file_test.rb
@@ -159,5 +159,7 @@ class RCMFileTest < Minitest::Test
assert File.file?(backup_path)
assert_equal original_content, File.read(backup_path)
+ assert File.file?(file_path)
+ assert_equal :new_content.to_s, File.read(file_path)
end
end