
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Website / Report Issue / IRC Channel / Mailing List / Development
Citron is a classical unit testing framework. It defines a simple domain language for creating traditionally modeled unit tests.
Using Rubygems simply install citron
:
$ gem install citron
Citron depends on ansi
for terminal colorization and rubytest
,
so those will be installed as well if they are not already.
Citon tests are written as a collection of testcase and test blocks.
Here is a fun example. We'll call the test file test/test_beatit.rb
:
TestCase "Show them how to Beat It" do
setup do
@funky = "funky"
@right = "right"
end
# fail
test "show them how to funky" do
@funky.assert != "funky"
end
# pass
test "show them what's right" do
@right.assert == "right"
end
# error
test "no one wants to be defeated" do
raise SyntaxError
end
# todo
test "better do what you can" do
raise NotImplementedError
end
end
Citron doesn't dictate the assertions system you use. In the above example, we are using the A.E. assertion framework. You can use any BRASS compliant system you prefer.
Citron is built on top of RubyTest. Jump over to its website to learn how to run tests and setup test run profiles.
Copyright (c) 2011 Rubyworks
Citron is distributable according to the terms of the FreeBSD license.
See COPYING.md for details.
FAQs
Unknown package
We found that citron demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.