1 require File.expand_path(File.dirname(__FILE__) + "/../lib/billygoat")
2 $:.unshift(File.expand_path(File.dirname(__FILE__) + '/../vendor/gems/rspec-1.1.0/lib'))
6 def initialize(expected)
12 # Satisfy expectation here. Return false or raise an error if it's not met.
18 "expected #{@actual.inspect} to after #{@expected.inspect}, but it didn't"
21 def negative_failure_message
22 "expected #{@actual.inspect} not to after #{@expected.inspect}, but it did"
26 def be_after(expected)
27 AfterMatcher.new(expected)