8
9
10
11
12
13
14
15
16
17
|
# File 'lib/stendhal/dsl.rb', line 8
def pending(*args,&blk)
if args.last.is_a? Hash
options = args.pop
options.update(:pending => true)
else
options = {:pending => true}
end
args << options
self.add_example Stendhal::Example.new(*args, &blk)
end
|