Repository URL to install this package:
|
Version:
1.7.4.rc1 ▾
|
The SDK tests are composed of two groups: unit test group and integration (functional) test group. Integration test group is by default set not to run.
run a single test
$ bundle exec rspec <test-file>:<line-number>$ bundle exec rspec spec/payments_examples_spec.rb:53run multiple tests in the same file
:<line-number> to the above command. For example, in order to execute payment create and payment list tests,$ bundle exec rspec spec/payments_examples_spec.rb:53:95run integration tests
$ bundle exec rspec --tag integrationrun tests with a specific String
$ bundle exec rspec -e "<string>"$ bundle exec rspec -e "Sa"