mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-26 06:07:26 -05:00
Typo
This commit is contained in:
@@ -12,7 +12,7 @@ class MyTest < IntegrationTest
|
|||||||
@x = 123
|
@x = 123
|
||||||
assert_equal 123, @x # Pass. @x is 123
|
assert_equal 123, @x # Pass. @x is 123
|
||||||
end
|
end
|
||||||
def tese_something_else
|
def test_something_else
|
||||||
assert_equal 123, @x # Fail! @x would be nil here
|
assert_equal 123, @x # Fail! @x would be nil here
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -28,7 +28,7 @@ class MyTest < IntegrationTest
|
|||||||
def test_something
|
def test_something
|
||||||
assert_equal 123, @x # Pass. @x is 123 thanks to setup
|
assert_equal 123, @x # Pass. @x is 123 thanks to setup
|
||||||
end
|
end
|
||||||
def tese_something_else
|
def test_something_else
|
||||||
assert_equal 123, @x # Pass. @x is 123 thanks to setup
|
assert_equal 123, @x # Pass. @x is 123 thanks to setup
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user