summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorSamantha McVey <samantham@posteo.net>2016-11-09 20:24:10 -0800
committerSamantha McVey <samantham@posteo.net>2016-11-09 20:24:10 -0800
commit58ffb4057fcd67e5c0ba33f76344cc8ad927c72b (patch)
treec3de0c73c3d28e59cd54287e85765313e2125621 /Rakefile
parent4241d44de87d8f04f593f683e913980bc746b3d6 (diff)
Add UTF-8 check test
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 49c90d5e..b41beab5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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