Sha256: b1a2bf126eccd2a86f2a7159c6e218663646242e8cd18c308b8496da1023de64
Contents?: true
Size: 1010 Bytes
Versions: 4
Compression:
Stored size: 1010 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Repos, 'integration' do after { reset_authentication_for subject } it_should_behave_like 'api interface' its(:collaborators) { should be_a Github::Repos::Collaborators } its(:comments) { should be_a Github::Repos::Comments } its(:commits) { should be_a Github::Repos::Commits } its(:contents) { should be_a Github::Repos::Contents } its(:downloads) { should be_a Github::Repos::Downloads } its(:forks) { should be_a Github::Repos::Forks } its(:keys) { should be_a Github::Repos::Keys } its(:hooks) { should be_a Github::Repos::Hooks } its(:merging) { should be_a Github::Repos::Merging } its(:statuses) { should be_a Github::Repos::Statuses } its(:releases) { should be_a Github::Repos::Releases } its(:stats) { should be_a Github::Repos::Statistics } its(:pubsubhubbub) { should be_a Github::Repos::PubSubHubbub } end # Github::Repos
Version data entries
4 entries across 4 versions & 1 rubygems