aboutsummaryrefslogtreecommitdiffstats
path: root/actionsystemtest
Commit message (Collapse)AuthorAgeFilesLines
* Rename call to runeileencodes2017-02-203-3/+3
| | | | | Call doesn't make as much sense here, we're really starting to run the driver.
* Amend documentationeileencodes2017-02-205-34/+46
| | | | | Many changes have been made since the beginning so documentation needed a refresher.
* Refactor config settings to use generated fileeileencodes2017-02-204-28/+33
| | | | | | | | | | | | | | | | | | | Originally I had set up system testing to have one configuration option to be set in the test environment. After thinking it over I think a generated class on app creation would be best. The reason for this is Capybara has a ton of configuration options that I'm sure some folks want to use. Thinking about how we handle screenshots, database transactions, and a whole bunch of other settings it would be better for users to be able to turn all of that on and off. When an app or scaffold is generated a `test/system_test_helper.rb` test helper will be generated as well. This will contain the class for tests to inherit from `ActionSystemTestCase` which will inherit from `ActionSystemTest::Base`. Here is where users can change the test driver, remove the screenshot helper, and add their additional Capybara configuration.
* Don't load ActionSystemTest in productioneileencodes2017-02-202-19/+0
| | | | | | | | | | By moving to the TestUnit Railtie, and doing the file requirement inside the onload call we can avoid loading ActionSystemTest in production and load it in the test env. This is important for performance reasons - loading up unnecessary files and object is expensive, especially when they should never be used in production.
* Turn system testing into it's own gem and renameeileencodes2017-02-2024-0/+862
Renames `Rails::SystemTestCase` to `ActionSystemTest` and moves it to a gem under the Rails name. We need to name the class `ActionSystemTestCase` because the gem expects a module but tests themselves expect a class. Adds MIT-LICENSE, CHANGELOG, and README for the future.