summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/dslkeywords/file_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lib/dslkeywords/file_test.rb b/test/lib/dslkeywords/file_test.rb
index 35a0f21..0a95e7e 100644
--- a/test/lib/dslkeywords/file_test.rb
+++ b/test/lib/dslkeywords/file_test.rb
@@ -22,6 +22,15 @@ class RCMFileTest < Minitest::Test
assert_equal text, File.read(FILE_PATH)
end
+ # def test_file_mode
+ # configure_from_scratch do
+ # file FILE_PATH do
+ # mode 661
+ # 'content'
+ # end
+ # end
+ # end
+
def test_create_file_from_array
arr = %w[Hello World and Hello Universe]
configure_from_scratch do