A web app created with Ruby on Rails to enable students to more effectively unit test their assignments by sharing thier unit tests, while having their testing source code automatically generated.
To Run
-
Ruby on Rails and all the prerequisites for it must be installed
-
Install all the Gems:
bundle install
-
Set up the database:
rake db:migrate
-
Start the server:
rails s
-
Optional: To make yourself admin, put the following lines in the Rails Console (
rails c
)-
user = User.find(1)
-
user.admin = true
-
user.save
-
exit
-
Created by Alston Lin