Sha256: 1909581d967e0fac7097040799527e54a2aefef90b76dbaea3e2a7b641d6924d

Contents?: true

Size: 638 Bytes

Versions: 18

Compression:

Stored size: 638 Bytes

Contents

# frozen_string_literal: true

require "assert"
require "much-rails/action/send_file_result"

class MuchRails::Action::SendFileResult
  class UnitTests < Assert::Context
    desc "MuchRails::Action::SendFileResult"
    subject{ unit_class }

    let(:unit_class){ MuchRails::Action::SendFileResult }
  end

  class InitTests < UnitTests
    desc "when init"
    subject{ unit_class.new("FILE") }

    should "know its attributes" do
      assert_that(subject.command_name).equals(:send_file)
      assert_that(subject.command_args).equals(["FILE"])
      assert_that(subject.send_file_args).equals(subject.command_args)
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
much-rails-0.4.3 test/unit/action/send_file_result_tests.rb
much-rails-0.4.2 test/unit/action/send_file_result_tests.rb
much-rails-0.4.1 test/unit/action/send_file_result_tests.rb
much-rails-0.4.0 test/unit/action/send_file_result_tests.rb
much-rails-0.3.0 test/unit/action/send_file_result_tests.rb
much-rails-0.2.8 test/unit/action/send_file_result_tests.rb
much-rails-0.2.7 test/unit/action/send_file_result_tests.rb
much-rails-0.2.6 test/unit/action/send_file_result_tests.rb
much-rails-0.2.5 test/unit/action/send_file_result_tests.rb
much-rails-0.2.4 test/unit/action/send_file_result_tests.rb
much-rails-0.2.3 test/unit/action/send_file_result_tests.rb
much-rails-0.2.2 test/unit/action/send_file_result_tests.rb
much-rails-0.2.1 test/unit/action/send_file_result_tests.rb
much-rails-0.2.0 test/unit/action/send_file_result_tests.rb
much-rails-0.1.3 test/unit/action/send_file_result_tests.rb
much-rails-0.1.2 test/unit/action/send_file_result_tests.rb
much-rails-0.1.1 test/unit/action/send_file_result_tests.rb
much-rails-0.1.0 test/unit/action/send_file_result_tests.rb