auto_test 0.0.7.9 → 0.0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/auto_test.rb +2 -2
- data/lib/auto_test/version.rb +1 -1
- data/lib/tasks/auto_test.rb +4 -4
- metadata +1 -1
data/lib/auto_test.rb
CHANGED
data/lib/auto_test/version.rb
CHANGED
data/lib/tasks/auto_test.rb
CHANGED
@@ -4,10 +4,10 @@ namespace :auto_test do
|
|
4
4
|
task :test do
|
5
5
|
puts "Running auto_test..."
|
6
6
|
sh "rails server -e test -p 3002 -d"
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
sh "rspec lib/spec/requests/auto_spec.rb -o 'log/rspec.txt'"
|
8
|
+
sh "rm 'log/rspec.txt'"
|
9
|
+
Rake::Task[:error_calc].invoke
|
10
|
+
Rake::Task[:stop].invoke
|
11
11
|
end
|
12
12
|
|
13
13
|
desc "calculating the errors"
|