lib/bbq/test.rb in bbq-0.0.4 vs lib/bbq/test.rb in bbq-0.1.0
- old
+ new
@@ -1,33 +1,2 @@
-require 'bbq'
-require 'active_support'
-require 'test/unit'
-require 'bbq/test_user'
-require 'test/unit/assertions'
-
-module Bbq
- class TestCase < ActiveSupport::TestCase
- class << self
- alias :scenario :test
- alias :background :setup
- end
-
- alias :background :setup
- end
-
- # test/unit specific methods for test_user
- class TestUser
- include Test::Unit::Assertions
-
- def see!(*args)
- args.each do |arg|
- assert has_content?(arg), "Expecting to see \"#{arg}\", text not found."
- end
- end
-
- def not_see!(*args)
- args.each do |arg|
- assert has_no_content?(arg), "Found \"#{arg}\", which was unexpected."
- end
- end
- end
-end
+warn "[DEPRECATION] require 'bbq/test' is deprecated. Please replace it with 'bbq/test_unit'"
+require "bbq/test_unit"