require 'bbq' require 'bbq/session' require 'active_support/test_case' require 'test/unit' require 'test/unit/assertions' module Bbq class TestCase < ActiveSupport::TestCase class << self alias :scenario :test alias :background :setup end alias :background :setup teardown do Bbq::Session.pool.release end 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