auto_test 0.0.8.8.3 → 0.0.8.8.4
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/version.rb +1 -1
- data/lib/auto_test.rb +1 -1
- data/lib/spec/requests/auto_spec.rb +3 -1
- metadata +1 -1
data/lib/auto_test/version.rb
CHANGED
data/lib/auto_test.rb
CHANGED
@@ -4,14 +4,16 @@
|
|
4
4
|
# run without cleaning the db between single tests
|
5
5
|
# see spec_helper for db-cleaner
|
6
6
|
require 'spec_helper'
|
7
|
-
require 'auto_test'
|
7
|
+
#require 'auto_test'
|
8
8
|
|
9
9
|
|
10
10
|
describe "Application" do
|
11
11
|
|
12
12
|
describe "auto_test" do
|
13
13
|
it "does test the application automatically" do
|
14
|
+
puts "in rspec"
|
14
15
|
load "#{Rails.root}/db/test_seeds.rb"
|
16
|
+
puts "autotest"
|
15
17
|
t = AutoTest::TestStarter.new
|
16
18
|
t.test
|
17
19
|
end
|