public
Description: Castanaut lets you write executable scripts for your screencasts. With a simple dictionary of stage directions, you can create complex interactions with a variety of applications.
Homepage: http://gadgets.inventivelabs.com.au/castanaut
Clone URL: git://github.com/joseph/castanaut.git
Joseph Pearson (author)
Mon Feb 25 16:33:45 -0800 2008
castanaut / spec / spec_helper.rb
100644 19 lines (15 sloc) 0.389 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id$
 
require File.expand_path(
  File.join(File.dirname(__FILE__), %w[.. lib castanaut])
)
 
Spec::Runner.configure do |config|
  # == Mock Framework
  #
  # RSpec uses it's own mocking framework by default. If you prefer to
  # use mocha, flexmock or RR, uncomment the appropriate line:
  #
  # config.mock_with :mocha
  # config.mock_with :flexmock
  # config.mock_with :rr
end
 
# EOF