mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 01:30:12 +01:00
10 lines
201 B
Ruby
10 lines
201 B
Ruby
|
|
require File.dirname(__FILE__) + '/spec_helper'
|
||
|
|
|
||
|
|
describe "Some integers" do
|
||
|
|
(1..10).each do |n|
|
||
|
|
it "The root of #{n} square should be #{n}" do
|
||
|
|
Math.sqrt(n*n).should == n
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|