spectie 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. data/LICENSE +21 -0
  2. data/README.rdoc +85 -0
  3. data/Rakefile +8 -0
  4. data/VERSION.yml +4 -0
  5. data/initialize.rb +6 -0
  6. data/lib/spectie.rb +3 -0
  7. data/lib/spectie/configuration.rb +10 -0
  8. data/lib/spectie/main.rb +26 -0
  9. data/lib/spectie/rails.rb +2 -0
  10. data/lib/spectie/rails_story_example_group.rb +55 -0
  11. data/lib/spectie/selenium.rb +3 -0
  12. data/lib/spectie/selenium/configuration.rb +27 -0
  13. data/lib/spectie/selenium/story_example_group.rb +51 -0
  14. data/lib/spectie/story_example_group_methods.rb +40 -0
  15. data/rake_tasks/package.rake +51 -0
  16. data/rake_tasks/publish.rake +40 -0
  17. data/rake_tasks/spec.rake +42 -0
  18. data/rake_tasks/utility.rake +11 -0
  19. data/rdoc/classes/Spectie.html +135 -0
  20. data/rdoc/classes/Spectie/Configuration.html +175 -0
  21. data/rdoc/classes/Spectie/Configuration/ForScenarios.html +111 -0
  22. data/rdoc/classes/Spectie/Configuration/Selenium.html +220 -0
  23. data/rdoc/classes/Spectie/Main.html +161 -0
  24. data/rdoc/classes/Spectie/RailsStoryExampleGroup.html +118 -0
  25. data/rdoc/classes/Spectie/SeleniumStoryExampleGroup.html +119 -0
  26. data/rdoc/classes/Spectie/StoryExampleGroupMethods.html +254 -0
  27. data/rdoc/created.rid +1 -0
  28. data/rdoc/files/README_rdoc.html +266 -0
  29. data/rdoc/files/lib/spectie/configuration_rb.html +101 -0
  30. data/rdoc/files/lib/spectie/main_rb.html +108 -0
  31. data/rdoc/files/lib/spectie/rails_rb.html +109 -0
  32. data/rdoc/files/lib/spectie/rails_story_example_group_rb.html +182 -0
  33. data/rdoc/files/lib/spectie/selenium/configuration_rb.html +101 -0
  34. data/rdoc/files/lib/spectie/selenium/story_example_group_rb.html +101 -0
  35. data/rdoc/files/lib/spectie/selenium_rb.html +110 -0
  36. data/rdoc/files/lib/spectie/story_example_group_methods_rb.html +101 -0
  37. data/rdoc/files/lib/spectie_rb.html +110 -0
  38. data/rdoc/fr_class_index.html +34 -0
  39. data/rdoc/fr_file_index.html +36 -0
  40. data/rdoc/fr_method_index.html +38 -0
  41. data/rdoc/index.html +24 -0
  42. data/rdoc/rdoc-style.css +208 -0
  43. data/script/selenium_webapp +45 -0
  44. data/script/spec +10 -0
  45. data/spec/example_run_state_tracking.rb +65 -0
  46. data/spec/selenium_config.rb +11 -0
  47. data/spec/spec_helper.rb +10 -0
  48. data/spec/spectie/rails_helper.rb +29 -0
  49. data/spec/spectie/rails_story_example_group_spec.rb +59 -0
  50. data/spec/spectie/selenium/configuration_spec.rb +91 -0
  51. data/spec/spectie/selenium/spec_helper.rb +16 -0
  52. data/spec/spectie/selenium/story_example_group_spec.rb +132 -0
  53. data/spec/spectie/spec_helper.rb +1 -0
  54. data/spec/spectie/story_example_group_methods_spec.rb +217 -0
  55. data/spec/spectie_spec.rb +46 -0
  56. data/spec/support/rails_app/controllers/application_controller.rb +2 -0
  57. data/tags +19899 -0
  58. metadata +125 -0
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spectie
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Kinderman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-10-22 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.7
24
+ version:
25
+ description: " Spectie (rhymes with \"necktie\") is a pure Ruby acceptance testing framework for RSpec. \n The philosophy of Spectie is that, since the business stakeholders on most projects\n don't care about exactly how you test, you're free to write the acceptance tests on\n a project how *you*, the developer, need to in order to ensure that the implementation\n is correct, easily understood, and maintainable. Furthermore, since you're a developer, \n the easiest, most straight-forward and maintainable way for you to write your tests is\n by using the highly expressive language that you're already coding in for the project;\n that's Ruby, baby!\n"
26
+ email: ryan@kinderman.net
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - LICENSE
36
+ - README.rdoc
37
+ - Rakefile
38
+ - VERSION.yml
39
+ - initialize.rb
40
+ - lib/spectie.rb
41
+ - lib/spectie/configuration.rb
42
+ - lib/spectie/main.rb
43
+ - lib/spectie/rails.rb
44
+ - lib/spectie/rails_story_example_group.rb
45
+ - lib/spectie/selenium.rb
46
+ - lib/spectie/selenium/configuration.rb
47
+ - lib/spectie/selenium/story_example_group.rb
48
+ - lib/spectie/story_example_group_methods.rb
49
+ - rake_tasks/package.rake
50
+ - rake_tasks/publish.rake
51
+ - rake_tasks/spec.rake
52
+ - rake_tasks/utility.rake
53
+ - rdoc/classes/Spectie.html
54
+ - rdoc/classes/Spectie/Configuration.html
55
+ - rdoc/classes/Spectie/Configuration/ForScenarios.html
56
+ - rdoc/classes/Spectie/Configuration/Selenium.html
57
+ - rdoc/classes/Spectie/Main.html
58
+ - rdoc/classes/Spectie/RailsStoryExampleGroup.html
59
+ - rdoc/classes/Spectie/SeleniumStoryExampleGroup.html
60
+ - rdoc/classes/Spectie/StoryExampleGroupMethods.html
61
+ - rdoc/created.rid
62
+ - rdoc/files/README_rdoc.html
63
+ - rdoc/files/lib/spectie/configuration_rb.html
64
+ - rdoc/files/lib/spectie/main_rb.html
65
+ - rdoc/files/lib/spectie/rails_rb.html
66
+ - rdoc/files/lib/spectie/rails_story_example_group_rb.html
67
+ - rdoc/files/lib/spectie/selenium/configuration_rb.html
68
+ - rdoc/files/lib/spectie/selenium/story_example_group_rb.html
69
+ - rdoc/files/lib/spectie/selenium_rb.html
70
+ - rdoc/files/lib/spectie/story_example_group_methods_rb.html
71
+ - rdoc/files/lib/spectie_rb.html
72
+ - rdoc/fr_class_index.html
73
+ - rdoc/fr_file_index.html
74
+ - rdoc/fr_method_index.html
75
+ - rdoc/index.html
76
+ - rdoc/rdoc-style.css
77
+ - script/selenium_webapp
78
+ - script/spec
79
+ - spec/example_run_state_tracking.rb
80
+ - spec/selenium_config.rb
81
+ - spec/spec_helper.rb
82
+ - spec/spectie/rails_helper.rb
83
+ - spec/spectie/rails_story_example_group_spec.rb
84
+ - spec/spectie/selenium/configuration_spec.rb
85
+ - spec/spectie/selenium/spec_helper.rb
86
+ - spec/spectie/selenium/story_example_group_spec.rb
87
+ - spec/spectie/spec_helper.rb
88
+ - spec/spectie/story_example_group_methods_spec.rb
89
+ - spec/spectie_spec.rb
90
+ - spec/support/rails_app/controllers/application_controller.rb
91
+ - tags
92
+ has_rdoc: true
93
+ homepage: http://github.com/ryankinderman/spectie
94
+ licenses: []
95
+
96
+ post_install_message:
97
+ rdoc_options:
98
+ - --charset=UTF-8
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: 1.8.6
106
+ version:
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: "0"
112
+ version:
113
+ requirements: []
114
+
115
+ rubyforge_project: kinderman
116
+ rubygems_version: 1.3.5
117
+ signing_key:
118
+ specification_version: 3
119
+ summary: A Ruby integration testing framework written on top of RSpec.
120
+ test_files:
121
+ - spec/spectie/rails_story_example_group_spec.rb
122
+ - spec/spectie/selenium/configuration_spec.rb
123
+ - spec/spectie/selenium/story_example_group_spec.rb
124
+ - spec/spectie/story_example_group_methods_spec.rb
125
+ - spec/spectie_spec.rb