From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Pt9Xr-0007hR-V5 for garchives@archives.gentoo.org; Sat, 26 Feb 2011 02:06:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0C0DE04E7; Sat, 26 Feb 2011 02:06:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6A4E7E04E7 for ; Sat, 26 Feb 2011 02:06:00 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 337DE1B40B3 for ; Sat, 26 Feb 2011 02:05:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id A00CE8006A for ; Sat, 26 Feb 2011 02:05:58 +0000 (UTC) From: "Alex Legler" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alex Legler" Message-ID: <049cd3ac1f68d2a027912d98948f1145350aaa35.a3li@gentoo> Subject: [gentoo-commits] proj/glsamaker:master commit in: test/unit/ X-VCS-Repository: proj/glsamaker X-VCS-Files: test/unit/glsa_mailer_test.rb X-VCS-Directories: test/unit/ X-VCS-Committer: a3li X-VCS-Committer-Name: Alex Legler X-VCS-Revision: 049cd3ac1f68d2a027912d98948f1145350aaa35 Date: Sat, 26 Feb 2011 02:05:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 82f0fd51512158408bd59b03c9508ef8 commit: 049cd3ac1f68d2a027912d98948f1145350aaa35 Author: Alex Legler a3li li> AuthorDate: Sat Feb 26 02:05:30 2011 +0000 Commit: Alex Legler gentoo org> CommitDate: Sat Feb 26 02:05:30 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/glsamaker.git= ;a=3Dcommit;h=3D049cd3ac Remove GLSAMailer tests for now again. --- test/unit/glsa_mailer_test.rb | 39 -----------------------------------= ---- 1 files changed, 0 insertions(+), 39 deletions(-) diff --git a/test/unit/glsa_mailer_test.rb b/test/unit/glsa_mailer_test.r= b index 16e8de3..2c554fc 100644 --- a/test/unit/glsa_mailer_test.rb +++ b/test/unit/glsa_mailer_test.rb @@ -1,43 +1,4 @@ require 'test_helper' =20 class GlsaMailerTest < ActionMailer::TestCase - test "request" do - @expected.subject =3D 'GlsaMailer#request' - @expected.body =3D read_fixture('request') - @expected.date =3D Time.now - - assert_equal @expected.encoded, GlsaMailer.create_request(@expected.= date).encoded - end - - test "edit" do - @expected.subject =3D 'GlsaMailer#edit' - @expected.body =3D read_fixture('edit') - @expected.date =3D Time.now - - assert_equal @expected.encoded, GlsaMailer.create_edit(@expected.dat= e).encoded - end - - test "comment" do - @expected.subject =3D 'GlsaMailer#comment' - @expected.body =3D read_fixture('comment') - @expected.date =3D Time.now - - assert_equal @expected.encoded, GlsaMailer.create_comment(@expected.= date).encoded - end - - test "approval" do - @expected.subject =3D 'GlsaMailer#approval' - @expected.body =3D read_fixture('approval') - @expected.date =3D Time.now - - assert_equal @expected.encoded, GlsaMailer.create_approval(@expected= .date).encoded - end - - test "sent" do - @expected.subject =3D 'GlsaMailer#sent' - @expected.body =3D read_fixture('sent') - @expected.date =3D Time.now - - assert_equal @expected.encoded, GlsaMailer.create_sent(@expected.dat= e).encoded - end end