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.501.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.435.2 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.435.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.435.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.434.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.433.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.432.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.430.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.430.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.424.3 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.424.2 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.424.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.423.3 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.423.2 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.423.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.423.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.422.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.421.1 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.421.0 spec/rest-ftp-daemon/features/dashboard_spec.rb
rest-ftp-daemon-0.420.2 spec/rest-ftp-daemon/features/dashboard_spec.rb