nodejs-should/nodejs-should.spec

61 lines
2.1 KiB
RPMSpec
Raw Normal View History

2020-09-01 17:13:41 +08:00
%{?nodejs_find_provides_and_requires}
%global enable_tests 1
Name: nodejs-should
Version: 8.4.0
Release: 1
Summary: A test framework agnostic BDD-style assertions for Node.js
License: MIT
URL: https://github.com/shouldjs/should.js
Source0: https://registry.npmjs.org/should/-/should-%{version}.tgz
#git clone git://github.com/shouldjs/should.js.git
#cd should.js
#git archive --prefix="test/" --format=tar tags/%{version}:test/ | bzip2 > tests-%{version}.tar.bz2
Source1: tests-%{version}.tar.bz2
Obsoletes: nodejs-should-promised < 0.3.1-2
BuildArch: noarch
ExclusiveArch: %{nodejs_arches} noarch
BuildRequires: nodejs-packaging
%if 0%{?enable_tests}
BuildRequires: npm(mocha) npm(bluebird) npm(should-equal) npm(should-format) npm(should-type)
%endif
Patch0001: 0001-Fix-flaky-tests.patch
%description
should is an expressive, readable, test framework agnostic, behavior-driven
development (BDD)-style assertion library for Node.js.
It extends the Object prototype with a single non-enumerable getter that
allows you to express how that object should behave.
should literally extends Node's assert module. For example,
should.equal(str, 'foo') will work, just as assert.equal(str, 'foo') would,
and should.AssertionError is assert.AssertionError, meaning any test framework
supporting this constructor will function properly with should.
%prep
%setup -q -n package
%setup -q -T -D -a 1 -n package
%patch0001 -p1
rm -f should.min.js
find . -type f -exec chmod -x '{}' \;
%build
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/should
cp -pr package.json index.js lib/ should.js \
%{buildroot}%{nodejs_sitelib}/should
%nodejs_symlink_deps
%if 0%{?enable_tests}
%check
%nodejs_symlink_deps --check
%{nodejs_sitelib}/mocha/bin/mocha --ui exports test/**/*.test.js
%endif
%files
%doc Readme.md History.md CONTRIBUTING.md
%license LICENSE
%{nodejs_sitelib}/should
%changelog
* Thu Aug 20 2020 wangyue <wangyue92@huawei.com> - 8.4.0-1
- package init