Sha256: b66ba170e73fb309b2b18821f18185d0119b26fa03e98dfa0ec3f59b003bd07b

Contents?: true

Size: 811 Bytes

Versions: 3

Compression:

Stored size: 811 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe GithubCLI::Commands::Organizations do
  let(:format) { {'format' => 'table'} }
  let(:user)   { 'peter-murach' }
  let(:org)    { 'github' }
  let(:api_class) { GithubCLI::Organization }

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

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

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

  it "invokes org:edit" do
    api_class.should_receive(:edit).with(org, {'name' => 'new'}, format)
    subject.invoke "org:edit", [org], {'name' => 'new'}
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github_cli-0.6.2 spec/github_cli/commands/organizations_spec.rb
github_cli-0.6.1 spec/github_cli/commands/organizations_spec.rb
github_cli-0.6.0 spec/github_cli/commands/organizations_spec.rb