Sha256: 49e41e435c08b60669a9e215f5da1f738efeb9125dc9bb7cd910fabdf0f5d01c

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe GithubCLI::Commands::Starring do
  let(:format) { 'table' }
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github_cli' }
  let(:api_class) { GithubCLI::Starring }

  it "invokes star:list" do
    api_class.should_receive(:list).with(user, repo, {}, format)
    subject.invoke "star:list", [user, repo]
  end

  it "invokes star:starred" do
    api_class.should_receive(:starred).with({}, format)
    subject.invoke "star:starred", []
  end

  it "invokes star:starred --user" do
    api_class.should_receive(:starred).with({"user" => user}, format)
    subject.invoke "star:starred", [], :user => user
  end

  it "invokes star:starring" do
    api_class.should_receive(:starring?).with(user, repo, {}, format)
    subject.invoke "star:starring", [user, repo]
  end

  it "invokes star:star" do
    api_class.should_receive(:star).with(user, repo, {}, format)
    subject.invoke "star:star", [user, repo]
  end

  it "invokes star:star" do
    api_class.should_receive(:unstar).with(user, repo, {}, format)
    subject.invoke "star:unstar", [user, repo]
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
github_cli-0.5.9 spec/github_cli/commands/starring_spec.rb
github_cli-0.5.8 spec/github_cli/commands/starring_spec.rb
github_cli-0.5.7 spec/github_cli/commands/starring_spec.rb
github_cli-0.5.6 spec/github_cli/commands/starring_spec.rb
github_cli-0.5.5 spec/github_cli/commands/starring_spec.rb
github_cli-0.5.4 spec/github_cli/commands/starring_spec.rb