Sha256: 3bb3d9b3b40671fe79feb240422b61575d8bf84ceae836c463b981b72912a4d4

Contents?: true

Size: 590 Bytes

Versions: 57

Compression:

Stored size: 590 Bytes

Contents

require "spec_helper"

describe "Dashboard", feature: true do

  describe "GET #{MOUNT_BOARD}" do
    # context 'without a password' do
    #   it 'is forbidden' do
    #     expect(HTTP.accept(:json).get("http://localhost:#{RequestHelpers::PORT}").status).to eq 401
    #   end
    # end

    context "with a password" do
      it "can be accessed" do
        expect(
            get(MOUNT_BOARD).status
        ).to eq 200
      end
    end

    it "has an HTML representation" do
      expect(
        get(MOUNT_BOARD, accept: 'html').status
      ).to eq 200
    end
  end # GET /

end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
rest-ftp-daemon-0.420.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.410.5 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.410.4 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.410.2 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.410.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.410.0.pre.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.400.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.306.4 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.306.3 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.306.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.306.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.305.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.304.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.302.3 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.302.2 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.302.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.302.0 spec/rest-ftp-daemon/features/dashboard_spec.rb