Sha256: 0ad8c73061ccf7b7b5d87c8577c153f5bcbf6ebc9f7810a6de8cd131db8bccff

Contents?: true

Size: 1.64 KB

Versions: 3

Compression:

Stored size: 1.64 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe GithubCLI::Commands::Notifications do
  let(:format) { {'format' => 'table'} }
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github_cli' }
  let(:id)     { 1 }
  let(:api_class) { GithubCLI::Notification }

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

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

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

  it "invokes notify:mark" do
    api_class.should_receive(:mark).with({'read'=>true}, format)
    subject.invoke "notify:mark", [], :read => true
  end

  it "invokes notify:mark --id" do
    api_class.should_receive(:mark).with({'thread_id'=>id,'read'=>true}, format)
    subject.invoke "notify:mark", [], :id => id, :read => true
  end

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

  it "invokes notify:check" do
    api_class.should_receive(:subscribed?).with(id, {}, format)
    subject.invoke "notify:check", [id]
  end

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

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

end

Version data entries

3 entries across 3 versions & 1 rubygems

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