zoukankan      html  css  js  c++  java
  • [RSpec] LEVEL 1: INTRODUCTION

    Install RSpec:

    Describe

    Lets start writing a specification for the Tweet class. Write a describe block for the Tweet model without any examples inside it.

    #tweet.rb
    
    
    class Tweet
    end

    Answer:

    #tweet_spec.rb
    
    describe Tweet do
    
    end

    It

    Now create a pending test called "can set status".

    describe Tweet do
      it "can set status"
      
    end

    Couple of ways to make test pending:

    Expectation

    Now let's write the example. Go ahead and instantiate a tweet, give it the status "Nom nom nom", and test the status has been properly set to this value using an == equality matcher.

    class Tweet
      attr_accessor :status
     
      def initialize(options={})
        self.status = options[:status]
      end
     
      def public?
        self.status && self.status[0] != "@"                                 
      end
    end

    Answer:

    describe Tweet do
      it 'can set status' do
        tweet = Tweet.new
        tweet.status = "Nom nom nom"
        tweet.status.should == "Nom nom nom"
      end
    end

    Matchers

    Using a predicate 'be' matcher, make sure that a tweet like "Nom nom nom" (which is not a reply because it doesn't start with an '@' sign) is public.

    describe Tweet do
      it 'without a leading @ symbol should be public' do
        tweet = Tweet.new(status: 'Nom nom nom')
        tweet.should be_public
      end
    end

    Comparison Matchers

    Finish the example below to ensure that our tweet.status.length is less than or equal to 140 characters. Use a be matcher in your spec.

    class Tweet
      attr_accessor :status
     
      def initialize(options={})
        self.status = options[:status]
      end
     
      def public?
        self.status && self.status[0] != "@"                                 
      end
     
      def status=(status)
        @status = status ? status[0...140] : status
      end
    end

    Answer:

    describe Tweet do
      it 'truncates the status to 140 characters' do
        tweet = Tweet.new(status: 'Nom nom nom' * 100)
        tweet.status.length.should be <= 140
      end
    end

    Predict 'be':

  • 相关阅读:
    centos 7 配置 keepalived,主机高可用
    centos 7 安装 nginx
    windows10 设置虚拟网卡/ip
    c#程序以管理员权限运行
    关于js中属性那些事
    centos 7 问题集锦
    几个Git仓库开源软件的比较
    grpc proto3 初体验
    windows下maven安装配置(本地仓库配置)
    navicat premium patch/keygen instruction
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4098355.html
Copyright © 2011-2022 走看看