Skip to content

Commit

Permalink
bootstrap clean
Browse files Browse the repository at this point in the history
  • Loading branch information
jesus-j-cedillo committed Oct 1, 2020
1 parent 501e6eb commit 2d330b0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# MemberPointTracker
A rails webapp that is used by tamu organizations to take and track member attendance.

{testing Jesus push}
Steps to setup Rspec and Capybara
1. In gem filed under group ':development, :test do' include:
#rspec testing framework
gem 'rspec-rails'

# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
2. run bundle install
3. You should have spec directory
4. In that directory you can add tests. Look at spec/views/login_pace_spec.rb for reference
5. to run do 'bundle exec rspec .\spec\directoryName\rspecFileName.rb'
# example: bundle exec rspec .\spec\views\login_page_spec.rb
# not sure why we need 'bundle exec' might have to fix this later
2 changes: 1 addition & 1 deletion tracker/app/views/officers/login.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ I will notify the student organization. ****</b></p>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Bootstrap Bitches!</h5>
<h5 class="modal-title" id="exampleModalLabel">Bootstrap Test!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
Expand Down

0 comments on commit 2d330b0

Please sign in to comment.