summaryrefslogtreecommitdiff
path: root/test/rake/test_rake_file_list_path_map.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rake/test_rake_file_list_path_map.rb')
-rw-r--r--test/rake/test_rake_file_list_path_map.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/rake/test_rake_file_list_path_map.rb b/test/rake/test_rake_file_list_path_map.rb
new file mode 100644
index 0000000000..5935dc2689
--- /dev/null
+++ b/test/rake/test_rake_file_list_path_map.rb
@@ -0,0 +1,8 @@
+require File.expand_path('../helper', __FILE__)
+
+class TestRakeFileListPathMap < Rake::TestCase
+ def test_file_list_supports_pathmap
+ assert_equal ['a', 'b'], FileList['dir/a.rb', 'dir/b.rb'].pathmap("%n")
+ end
+end
+