HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-3.0.2/spec/mspec/spec/matchers/be_nan_spec.rb
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/guards'
require 'mspec/helpers'
require 'mspec/matchers'

describe BeNaNMatcher do
  it "matches when actual is NaN" do
    BeNaNMatcher.new.matches?(nan_value).should == true
  end

  it "does not match when actual is not NaN" do
    BeNaNMatcher.new.matches?(1.0).should == false
    BeNaNMatcher.new.matches?(0).should == false
  end

  it "provides a useful failure message" do
    matcher = BeNaNMatcher.new
    matcher.matches?(0)
    matcher.failure_message.should == ["Expected 0", "to be NaN"]
  end

  it "provides a useful negative failure message" do
    matcher = BeNaNMatcher.new
    matcher.matches?(nan_value)
    matcher.negative_failure_message.should == ["Expected NaN", "not to be NaN"]
  end
end