# frozen_string_literal: truerequire'spec_helper'describeWebIdeTerminaldolet(:build){create(:ci_build)}subject{described_class.new(build)}it'returns the show_path of the build'doexpect(subject.show_path).toend_with("/ide_terminals/#{build.id}")endit'returns the retry_path of the build'doexpect(subject.retry_path).toend_with("/ide_terminals/#{build.id}/retry")endit'returns the cancel_path of the build'doexpect(subject.cancel_path).toend_with("/ide_terminals/#{build.id}/cancel")endit'returns the terminal_path of the build'doexpect(subject.terminal_path).toend_with("/jobs/#{build.id}/terminal.ws")endend