diff options
author | Samantha McVey <samantham@posteo.net> | 2016-11-09 20:24:10 -0800 |
---|---|---|
committer | Samantha McVey <samantham@posteo.net> | 2016-11-09 20:24:10 -0800 |
commit | 58ffb4057fcd67e5c0ba33f76344cc8ad927c72b (patch) | |
tree | c3de0c73c3d28e59cd54287e85765313e2125621 /Rakefile | |
parent | 4241d44de87d8f04f593f683e913980bc746b3d6 (diff) |
Add UTF-8 check test
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ task default: %w[test] task :test do - ruby "tests/yaml.rb" + Dir["./tests/*.rb"].each do |test_file| + ruby test_file + end end |