库: rspec/rspec-expectations matcher匹配器常用
https://relishapp.com/rspec/rspec-expectations/v/3-7/docs
RSpec.info/documentation/
be_completed是Predicate matchers
expect(actual).to be_xxx #passes if actual.xxx?
RSpec::Expectations lets you express expected outcomes on an object in an example.
Built-in matchers
expect(actual_value).to eq(expected_value)
expect(actual_value).to be >= expected_value 包括>, < , <=, >=
expect(actual_value).to match(/expression/) 正则表达式(expect不支持匹配符号 =~)
expect(array).to all(inner_matcher) #让array通过inner_matcher
如:expect([1,2,3]).to all(be_truthy)
expect(array).to contain_exactly(expected_array) #如果实际的和期待的数组包含相同的元素,则期待成功。不考虑顺序。
contain_exactly等同于match_array
expect(actual).to exist
Collection membership
expect(actual).to include(expected) #actual可以是数组,字符串,hash.
例子:expect([1,2,3]).to include(1,2), expect({:a => "b"}).to include(:a => "b")
include的变型, start_with, end_with
Types/classes
expect(actual).to be_an_instance_of(expected)
# passes if actual.class == expected
expect(actual).to be_a(expected) #passes if actual.kind_of?(expected)
Predicate matchers
expect(actual).to be_xxx #passes if actual.xxx?
expect(actual).to have_xxx(:arg) #passes if actual.has_xxx?(:arg)
expect(actual).to have_attributes(key/value pairs)
Truthiness
expect(actual).to be_truthy/falsy # passes if actual is truthy (not nil or false)
expect(actual).to be true/false #passes if actual == true/false
expect(actual).to be_nil #passes if actual is nil
expect(actual).to_not be_nil #passes if actual is not nil
Ranges
expect(1..10).to cover(3)
expect(actual).to be_between(min, max)
Expecting errors
expect { ... }.to raise_error
expect { ... }.to raise_error(ErrorClass)
expect { ... }.to raise_error("message")
expect { ... }.to raise_error(ErrorClass, "message")
expect可以用于block也可以用于value expectations.
Expecting throws and Yielding没看懂⚠️
Compound Matcher Expressions
通过user,or可以创建混合匹配表达式 。
expect(stoplight.color).to eq("red").or eq("green").or eq("yellow")
expect(alphabet).to start_with("a").and end_with("z")
Composing Matchers
以下matchers接受matchers 作为参数。
- change().by(matcher) #改变sth等于by(匹配的值)
- change{}.from(mather).to(matcher) #改变sth,从matcher_val到mather_val
- include(matcher, matcher)
- include(:key => matcher, :other => mathcer)
‘change’ matcher:
- expect {do_sth}.to change(object, :attribute)
- expect {do_sth}.to change{object.attribute}
- 可以联合 from().to(); by(), by_at_least(), by_at_most()
Relish(n:great enjoyment; 水果蔬菜酱) 案例连接
库: rspec/rspec-expectations matcher匹配器常用的更多相关文章
- Matcher匹配器查找字符串指定内容
public static void main(String[] args) { String s = "我的手机号码是18988888888,曾经用过18987654321,还用过1881 ...
- Rust 1.7.0 匹配器 match 的简介和使用
使用过正則表達式的人应该都知道 matcher ,通过 matcher 匹配器运算正則表達式,完毕一系列的匹配规则. 在Rust 中 没有 switch 语句.matcher 就是 switch 的一 ...
- Rspec: everyday-rspec实操。FactoryBot预构件 (rspec-expectations gem 查看匹配器) 1-4章
总文档连接: RSpec.info/documentation/ 包括core, expectiation,rails , mock, 点击最新版本,然后右上角搜索class, method. 第3章 ...
- Junit 断言 assertThat Hamcrest匹配器
junit断言总结本文参考了http://blog.csdn.net/wangpeng047/article/details/9628449一 junit断言1.JUnit框架用一组assert方法封 ...
- 前端测试框架Jest系列教程 -- Matchers(匹配器)
写在前面: 匹配器(Matchers)是Jest中非常重要的一个概念,它可以提供很多种方式来让你去验证你所测试的返回值,本文重点介绍几种常用的Matcher,其他的可以通过官网api文档查看. 常用的 ...
- Flask入门之自定义过滤器(匹配器)
1. 动态路由的匹配器? 不知道这种叫啥名,啥用法,暂且叫做匹配器吧. Flask自带的匹配器可以说有四种吧(保守数字,就我学到的) 动态路由本身,可以传任何参数字符串或者数字,如:<user ...
- 【Jest】笔记二:Matchers匹配器
一.前言 什么是匹配器? 我们可以把匹配器看成,testng断言,这么理解就可以了 二.常用的匹配器 test('two plus two is four', () => { expect(2 ...
- Mockito 2 参数匹配器
Mockito 通过使用 equals() 这种自然的 Java 样式来校验参数值.有时候,当需要有其他一些灵活性的时候,你可能会要求使用参数匹配(argument matchers). 请参考下面的 ...
- Hamcrest匹配器框架
其实在之前的文章中已经使用过 Hamcrest 匹配器框架,本篇文章将系统的介绍它的使用. 为什么要用Hamcrest匹配器框架 Hamcrest是一款软件测试框架, 可以通过现有的匹配器类检查代码中 ...
随机推荐
- 奋斗史-IT女生是怎样炼成的
IT女生的奋斗史 终于来到了毕业季,感觉有点伤感! 记得11年来到大学的时候,还是那么懵懂,什么都不懂,几乎连电脑的基本操作都不会!自己小时候虽然家里穷,但是从小就觉得“软件”是个很神奇的东西,很了不 ...
- linux常用命令:Linux 目录结构
对于每一个Linux学习者来说,了解Linux文件系统的目录结构,是学好Linux的至关重要的一步.,深入了解linux文件目录结构的标准和每个目录的详细功能,对于我们用好linux系统只管重要,下面 ...
- pollard_rho 学习总结 Miller_Rabbin 复习总结
吐槽一下名字,泼辣的肉..OwO 我们知道分解出一个整数的所有质因子是O(sqrt(n)/ln(n))的 但是当n=10^18的时候就显得非常无力的 这个算法可以在大概O(n^(1/4))的时间复杂度 ...
- Contiki源码+原理+功能+编程+移植+驱动+网络(转)
源:Contiki源码+原理+功能+编程+移植+驱动+网络 请链接:http://www.rimelink.com/nd.jsp? id=31&_np=105_315 假设您对于用Contik ...
- mysql查询操作1
##1.在已有的表中插入一行记录 insert into tb_name values("",""...); ##2.查询语句的框架和用法 select 字段名 ...
- python Django编写登录项目
Django 目录结构: __init__.py 文件: import pymysql pymysql.install_as_MySQLdb() 注意:如果 import pymysql 的时候报红, ...
- 03: vuejs 事件、模板、过滤器
目录:Vue其他篇 01: vue.js安装 02: vue.js常用指令 03: vuejs 事件.模板.过滤器 目录: 1.1 事件 1.2 模板 1.3 自定义过滤器 1.4 过度 1.5 支付 ...
- 前端开发环境全面配置 --- mac OS
Mac 开发配置 brew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install ...
- 以太坊(Ethereum) - 节点时间未同步和区块同步失败案例分析
背景 以太坊技术搭建的区块链网络,节点间需要保证时间一致,才能正常有序的发送交易和生成区块,使得众多节点共同维护分布式账本(区块数据+状态数据).但是,网络中节点的系统时间不一致回出现什么现象呢,我们 ...
- Linq in GroupBy GroupJoin
还是上一份的代码例子: public class Person { public int ID { get; set; } public string Name { get; set; } publi ...