-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
22 lines (13 loc) · 835 Bytes
/
README
File metadata and controls
22 lines (13 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
== Version Matrix Readme
This Ruby on Rails web application aims to provide a mechanism for developers, who maintain a number of software products that interact, to keep track of versions of those products that work together.
== Installation Instructions
TODO
== Running the tests
There are Cucumber and Rspec tests for the Version Matrix application. The general philosphy is to have Cucumber tests for testing use cases, and rspec tests for the controllers and models.
First you need to set-up the database. The following commands will get the development and test database schemas set-up:
- rake db:migrate
- rake environment RAILS_ENV=test db:migrate
The Cucumber tests can be run with the following command:
- bundle exec cucumber
The rspec unit tests can be run with the following command:
- bundle exec rspec spec/