Sha256: 125d72ebbea1ecc249157ee1cd252554c08da6a47f553775deadeb34bfe06bd7
Contents?: true
Size: 478 Bytes
Versions: 12
Compression:
Stored size: 478 Bytes
Contents
require File.dirname(__FILE__) + '/../test_helper' class TaskTest < Test::Unit::TestCase include UserSystem main_scenario def setup self.current_user = User.find(1000001) end def teardown self.current_user = nil end def test_two_started_tasks tasks(:first).start_work tasks(:another).start_work end def test_two_started_tasks_anonymous self.current_user = nil tasks(:first).start_work tasks(:another).start_work end end
Version data entries
12 entries across 12 versions & 1 rubygems