lib/soaspec/exe_helpers.rb in soaspec-0.0.41 vs lib/soaspec/exe_helpers.rb in soaspec-0.0.42
- old
+ new
@@ -119,19 +119,12 @@
# @return [String] Content of README.md to aid someone getting started with this using this gem
def readme_content
<<-EOF
-# Prerequisites
-This creates files within an existing folder. It could add onto an existing project.
-For a new project create a folder and be at it's location on the command line
+# Installation
-```
-mkdir soaspec_test
-cd soaspec_test
-```
-
Run `bundle install` to install the gems mentioned in the Gemfile.
To avoid conflict with gems on the machine globally it may be better to specify gem location with:
`bundle install --path ~/.gem`
@@ -146,14 +139,17 @@
Tests are within the 'spec' folder and end in '_spec'. Setup and teardown for tests is in 'spec/spec_helper'
## Templates
These are the base requests with ERB inside them to create smartly changing requests accoring to the test.yml
+## Data
+Data used in the test is stored in `config/data` folder. The `data_magic` gem is used by default to read files here.
+
## Libaries
Libaries to be installed are in 'Gemfile'. Specific gem versions can be specified here and enforeced with `bundle exec rake`
## Reports
-Reports are shown in the 'logs' folder. By default Rake produces a junit, an html report, and a traffic.log file with the API request and responses in it
+Reports are shown in the 'logs' folder. By default Rake produces a junit, an html report, and a `traffic.log` file with the API request and responses in it
EOF
end
def test_server_content
\ No newline at end of file