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

Compare == fast and standard matrices #9

Open
RobolabGs2 opened this issue Oct 27, 2019 · 0 comments
Open

Compare == fast and standard matrices #9

RobolabGs2 opened this issue Oct 27, 2019 · 0 comments
Labels
bug Something isn't working Ruby

Comments

@RobolabGs2
Copy link
Member

    def test_equal_by_value_fast_with_standard
      standard, fast = create_matrices([1, 2], [3, 4], [-5, -3])
      assert fast == standard, 'Equals fast matrix and standard matrix'
    end

    def test_equal_by_value_standard_with_fast
      standard, fast = create_matrices([1, 2], [3, 4], [-5, -3])
      skip 'Standard matrix does not recognizes fast matrix'
      assert standard == fast, 'Equals standard matrix and fast matrix'
    end
@RobolabGs2 RobolabGs2 added the bug Something isn't working label Oct 27, 2019
@RobolabGs2 RobolabGs2 changed the title Compare fast and standard matrices Compare == fast and standard matrices Oct 27, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working Ruby
Projects
None yet
Development

No branches or pull requests

1 participant