forked from dbrady/tourbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
81 lines (52 loc) · 2.02 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
CHANGES
----------------------------------------------------------------------
2009-07-27:
-----------
- Version 0.1.1
- added webrat to the gemspec as a requirement.
2009-07-25:
-----------
- Version 0.1.0
- finished implementing webrat
- removed WebSickle
- updated examples and docs to reflect new usage
2009-07-07:
-----------
- Version 0.0.10
- use webrat's selectors, matchers and other goodness
- added a wait method to Tours so you can do wait 5.seconds and it will wait for five seconds
2009-04-30:
-----------
- Version 0.0.9:
- before_tour, after_tour added by JTZemp. Runs at the beginning and
end of each tour.
2009-04-17:
-----------
- Version 0.0.8:
- Per-test filtering added by James Britt.
Dave notes: Beware, there's a gotcha. TourBus will accept multiple
tours to run (e.g. "tourbus simple login contact"), and if you
specify filtering, you'll get the intersection of tests and tours.
There's no way to select 'this test from this tour, and that test
from that tour'. I think it's a great feature though because when
you want to zero in on a specific test you're usually focused in
on a specific tour, too.
2009-01-10:
-----------
- Added README.rdoc to examples/contact_app
- Added first example! Brain-dead Sinatra app that can be toured.
- Added test name to logging output in tour.
- Added missing tourbus.yml file to gemspec.
- Removed a bit of debugging code that printed options and then
exited. This made actually running the app rather difficult. Heh.
Oops.
2009-01-09:
-----------
- tourbus -l will now check see if a file in tours actually defines a
constant by that name that inherits from Tour, as opposed to barfing
spectacularly on files in the tour_helpers folder.
- Added a config file option. Tourbus looks for tourbus.yml in .,
./tours, ./config, and ~. Any options set there will be merged into
the command-line args. (Command-line args override config file
options, naturally.)
Added tourbus.sample.yml to show what fields are available.