vote up 2 vote down star

Super-beginner easy points ruby question. I'm trying to learn some ruby by programming the Project Euler problems. So I have a test

class ProjectEuler_tests < Test::Unit::TestCase
  @solution = 123456 # Not the answer so as not to be a spoiler
  def test_problem_1
    assert_equal(@solution, ProjectEuler1.new.solve)
  end
end

But this doesn't work, @solution is nil when the test runs. What is the proper way to assign it at the class scope?

flag

68% accept rate

2 Answers

vote up 5 vote down check

Class constants in ruby start with an uppercase char:

class ProjectEuler_tests < Test::Unit::TestCase
  SOLUTION = 123456 # Not the answer so as not to be a spoiler
  def test_problem_1
    assert_equal(SOLUTION, ProjectEuler1.new.solve)
  end
end
link|flag
vote up 2 vote down

Class variables in ruby are designated by "@@"

class ProjectEuler_tests < Test::Unit::TestCase
  @@solution = 123456 # Not the answer so as not to be a spoiler
  def test_problem_1
    assert_equal(@@solution, ProjectEuler1.new.solve)
  end
end

Edit: I missed the "constant" in the title

link|flag
Isn't this the same as a static field in C#? (If there is such a concept in ruby) – George Mauer Apr 8 at 14:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.