Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh #1

Merged
merged 21 commits into from
Oct 4, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions week1/exercises/roster.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
1, Katie, [email protected], katrops, @kjtrops, Katie
2,
3, Alex, [email protected], Pensive1881
4,
4, Rick, [email protected], rcrelia, @rcrelia, Rick
5, Edwin, [email protected], edwinfu, @edwinfu,
6,
7 Alicia, [email protected], sojama
8,
9,
10,
11,
12,
6, Gregg, [email protected], GGadow, n/a, Gregg
7 Alicia, [email protected], sojama
8, Scott Kostojohn, [email protected],skostojohn,@crm_scott, Scott
9, Kenny, [email protected], lukenny, , Kenny
10, Nathan, [email protected], natron19, natron19, natron19
11, Emily, [email protected], no twitter, metroretro, Emily
12, joseph , [email protected], jjs0sbw, @jjs0sbw, huh?
13,
14, Tom, [email protected], tomun, @tomun,
15, Surendra, [email protected], syearva, ,
11 changes: 6 additions & 5 deletions week1/exercises/rspec_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,19 @@
# Fix the Failing Test
# Order of Operations is Please Excuse My Dear Aunt Sally:
# Parentheses, Exponents, Multiplication, Division, Addition, Subtraction
(1+2-5*6/2).should eq -13
(1+2-5*6/2).should eq -12
end
it "should count the characters in your name" do
pending "make a test to count the characters in your name"
"Name".should have(5).characters
"Tom".should have(3).characters
end

it "should check basic math" do
pending "make a test to check some basic math"
(1+1).should eq 2
end

it "should check basic spelling"
it "should check basic spelling" do
"field".should include("ie")
end

end
end