diff options
| author | Paul Buetow <paul@buetow.org> | 2025-02-25 23:16:54 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-02-25 23:16:54 +0200 |
| commit | 37eb90aebd8b26508d60f4ec623ae6192df5c09d (patch) | |
| tree | 9d672855f6c0d9213c97c350e0926ddba4d54b1e /test/lib/dslkeywords | |
| parent | 577d457b1bd0f09a91be2afa07a9f81c38cac8a2 (diff) | |
initial mode support
Diffstat (limited to 'test/lib/dslkeywords')
| -rw-r--r-- | test/lib/dslkeywords/file_test.rb | 9 |
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 |
