BloomTests.Book.BookCopyrightAndLicenseTests.GetLicenseMetadata_HasCustomLicense_RightsStatementContainsCustom C# (CSharp) Method

GetLicenseMetadata_HasCustomLicense_RightsStatementContainsCustom() private method

		public void GetLicenseMetadata_HasCustomLicense_RightsStatementContainsCustom()
		{
			string dataDivContent= @"<div lang='en' data-book='licenseNotes'>my custom</div>
					<div data-book='copyright' class='bloom-content1'>Copyright © 2012, test</div>";
			Assert.AreEqual("my custom", GetMetadata(dataDivContent).License.RightsStatement);
		}
BookCopyrightAndLicenseTests